Date Format
I have an user variable, value is set as '2010-01-20'. I try to display it on a text object with a date format as "dd mmm yyyy". It won't follow the format and just display "2010-01-20" instead. How do I convert it? Thank you in advance!
Comments
[StrToDate(<startday>)]
[EncodeDate(StrToInt(Copy(<startday>, 1, 4)), StrToInt(Copy(<startday>, 6, 2)), StrToInt(Copy(<startday>, 9, 2)))]